3D Graphics Programming with QuickDraw 3D 1.5.4
Previous | QD3D Book | Overview | Chapter Contents | Next |
The Error Manager provides functions that you can use to register error, warning, and notice callback routines.
You can use the Q3Error_Register function to register an application-defined error-handling routine.
TQ3Status Q3Error_Register (TQ3ErrorMethod errorPost, long reference);
The Q3Error_Register function registers with the Error Manager the error-handling routine specified by the errorPost parameter. See page [link] for information on defining an error-handling routine.
You can use the Q3Warning_Register function to register an application-defined warning-handling routine.
TQ3Status Q3Warning_Register (
TQ3WarningMethod warningPost,
long reference);
The Q3Warning_Register function registers with the Error Manager the warning-handling routine specified by the warningPost parameter. See page [link] for information on defining a warning-handling routine.
You can use the Q3Notice_Register function to register an application-defined notice-handling routine.
TQ3Status Q3Notice_Register (TQ3NoticeMethod noticePost, long reference);
The Q3Notice_Register function registers with the Error Manager the notice-handling routine specified by the noticePost parameter. See page [link] for information on defining a notice-handling routine.
Previous | QD3D Book | Overview | Chapter Contents | Next |